home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / programming / amigac / dice_c_demo / include / clib / macros.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  318 b   |  18 lines

  1. #ifndef CLIB_MACROS_H
  2. #define CLIB_MACROS_H
  3. /*
  4. ** $VER: macros.h 36.0 (30.11.90)
  5. ** Includes Release 38.56
  6. **
  7. ** C prototypes
  8. **
  9. ** (C) Copyright 1990-1992 Commodore-Amiga, Inc.
  10. ** All Rights Reserved
  11. */
  12.  
  13. #define MAX(a,b) ((a)>(b)?(a):(b))
  14. #define MIN(a,b) ((a)<(b)?(a):(b))
  15. #define ABS(x) ((x<0)?(-(x)):(x))
  16.  
  17. #endif 
  18.